* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #e8b86d;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #e8b86d;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 2rem;
}

.blog-article {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.article-header {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.article-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  gap: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 2rem;
}

.lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  font-style: italic;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #e8b86d;
  padding-bottom: 0.5rem;
}

.content-section h3 {
  color: #34495e;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-section h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.content-section p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #e8b86d;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* Services List */
.services-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-item h3 {
  color: #e8b86d;
  margin-bottom: 0.5rem;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 2rem;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e8b86d;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Features Container */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.feature h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* Tips Container */
.tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tip {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tip h4 {
  color: #e8b86d;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: white;
  border-bottom: 3px solid #e8b86d;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item {
  text-align: center;
}

.contact-item h4 {
  color: #e8b86d;
  margin-bottom: 0.5rem;
}

.cta-button {
  background: #e8b86d;
  color: #2c3e50;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.cta-button:hover {
  background: #d4a853;
  transform: translateY(-2px);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e8b86d;
  padding-bottom: 0.5rem;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-widget a:hover {
  color: #e8b86d;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  background: #2c3e50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #e8b86d;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #e8b86d;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  padding: 0.25rem 0;
}

.footer-bottom {
  background: #1a252f;
  text-align: center;
  padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-content {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
  
  .benefits-grid,
  .features-container,
  .tips-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .article-header h1 {
    font-size: 1.5rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .article-content {
    padding: 1rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
}

/* Animation for smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
